home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / emac16ds.zip / MINTFORM.DEF < prev    next >
Text File  |  1990-09-13  |  744b  |  31 lines

  1. ;The form data segment:
  2. formSeg    segment    byte public
  3.  
  4. ;only mintform knows what's in it.
  5.  
  6. formSeg    ends
  7.  
  8.  
  9. ;The form data structure:
  10. ;  fb_prim requires that form_length be the first entry.
  11. form_struc    struc
  12. form_length    dw    ?        ;* + [*] -> next *
  13. name_length    dw    ?        ;length in bytes of form name.
  14. hash_link    dw    ?        ;link to next item that hashes to this.
  15. form_pointer    dw    ?        ;number of bytes into the form so far.
  16. data_length    dw    ?        ;number of bytes of data.
  17. form_struc    ends
  18.  
  19. ;note that (size form) + name_length + data_length do not necessarily add
  20. ;  up to form_length.  The data length might be less than the maximum available
  21. ;  to a form.
  22.  
  23. name_offset    equ    (size form_struc)
  24.  
  25. free_space    equ    200
  26.  
  27. NIL    equ    0
  28.  
  29. sgap    equ    80h
  30.  
  31.